Resonate is a clean, modern, and fully responsive HTML Template. it is designed for Music Studio Rental. Resonate Template’s uniqueness is due to its amazingly beautiful designs and easy to use Website template solution that maximizes user satisfaction. It is built using bootstrap 5.3 framework, works totally responsive, easy to customise, well commented codes and seo friendly
This template made with Bootstrap, using HTML5, CSS3, JS and jQuery.
Yes, it’s completely possible to edit HTML in Notepad or a similar program, but things will go much more smoothly for you if you use a proper code editing app. One of the main reasons is you’ll get colored highlighting of your code, as you’ll see shortly, which will make it much easier to read and edit.
I recommend Visual Studio Code, which you can download here: https://code.visualstudio.com/download
Most HTML templates will come in a ZIP file - if so, go ahead and extract yours now. Then look around inside the template’s folders until you find the “index.html” or “index.htm” file.
In our example template the “index.html” file is found in the “HTML” directory.
You can follow the following code structure which is made easy and simple to understand.
<!-- Header --> <header class="fixed-top bg-accent-transparent"> ... </header> <!-- Banner --> <div class="section position-relative bg-attach-cover"> ... </div> <!-- Section Recent Releases --> <div class="section bg-attach-cover> ... </div> <!-- Section Partner --> <div class="section pt-0"> ... </div> <!-- Section About Us --> <div class="section"> ... </div> <!-- Section Feature --> <div class="section"> ... </div> <!-- Section Services --> <div class="section bg-attach-cover p-0"> ... </div> <!-- Section Fasilitation --> <div class="section bg-attach-cover"> ... </div> <!-- Section Out Talent --> <div class="section"> ... </div> <!-- Section Appointment --> <div class="section position-relative mx-auto"> ... </div> <!-- Section Testimonials & Blog --> <div class="section bg-attach-cover"> ... </div> <!-- Footer --> <footer> <div class="section py-5"> ... </footer>
To change the header, please change the code inside the header comment tag. Here you can also change the logo and nav menu.
<!-- Header --> <div id="header" class="fixed-top bg-accent-transparent"> <div class="r-container"> <nav class="navbar navbar-expand-xl"> <div class="container-fluid ps-3"> <div class="logo-container"> <a class="navbar-brand" href="#"><img src="image/logo.png" alt="" class="img-fluid"></a> </div> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> <i class="fa-solid fa-bars-staggered accent-color-2"></i> </button> <div class="collapse navbar-collapse" id="navbarNav"> <ul class=""navbar-nav ms-xl-5 ps-xl-5 me-auto mb-2 mb-xl-0 gap-xl-4 gap-1"> <li class="nav-item"> <a class="nav-link active" aria-current="page" href="index.html">Home</a> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> About Us </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="about.html">About Us</a></li> <li><a class="dropdown-item" href="team.html">Team</a></li> </ul> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Services </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="services.html">Services</a></li> <li><a class="dropdown-item" href="service_detail.html">Service Details</a></li> </ul> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Pages </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="studio.html">Studio</a></li> <li><a class="dropdown-item" href="studio_detail.html">Studio Detail</a></li> <li><a class="dropdown-item" href="faq.html">FAQs</a></li> <li><a class="dropdown-item" href="appointment.html">Appointment</a></li> <li><a class="dropdown-item" href="404.html">404 Error</a></li> </ul> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Blog </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="blog.html">Blog & News</a></li> <li><a class="dropdown-item" href="single_blog.html">Single Post</a></li> </ul> </li> </ul> <div class="d-flex flex-row gap-3 w-max-content justify-content-center"> <div class="border-end pe-3"> <a href="" class="link d-flex flex-row gap-3 align-items-center">ENG<a> </div> <div> <a href="contact.html" class="link d-flex flex-row gap-3 align-items-center">CONTACT US<a> </div> </div> </div> </div> </nav> </div> </div> <!-- End Header -->
To change the logo, please change the code in the following code.
<div class="logo-container"> <a class="navbar-brand" href="#"><img src="image/logo.png" alt="" class="img-fluid"></a> </div>
To change the Burger Menu, you can change the code inside the ul tag button.
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> <i class="fa-solid fa-bars-staggered accent-color-2"></i> </button>
To change the navigation, you can change the code inside the ul tag with class navbar-nav.
<ul class=""navbar-nav ms-xl-5 ps-xl-5 me-auto mb-2 mb-xl-0 gap-xl-4 gap-1"> <li class="nav-item"> <a class="nav-link active" aria-current="page" href="index.html">Home</a> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> About Us </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="about.html">About Us</a></li> <li><a class="dropdown-item" href="team.html">Team</a></li> </ul> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Services </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="services.html">Services</a></li> <li><a class="dropdown-item" href="service_detail.html">Service Details</a></li> </ul> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Pages </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="studio.html">Studio</a></li> <li><a class="dropdown-item" href="studio_detail.html">Studio Detail</a></li> <li><a class="dropdown-item" href="faq.html">FAQs</a></li> <li><a class="dropdown-item" href="appointment.html">Appointment</a></li> <li><a class="dropdown-item" href="404.html">404 Error</a></li> </ul> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Blog </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="blog.html">Blog & News</a></li> <li><a class="dropdown-item" href="single_blog.html">Single Post</a></li> </ul> </li> </ul>
To change the footer, you can change the code inside the footer tag.
<footer> <div class="section pb-0 pt-5 position-relative border-top border-accent" style="height: 90vh;"> <div class="d-flex flex-column gap-3 h-100"> <div class="row row-cols-xl-2 row-cols-1 h-100"> <div class="col mb-3"> <div class="d-flex flex-column gap-3 justify-content-between h-100"> <div class="d-flex flex-row gap-5"> <a href="" class="read-more d-flex flex-row gap-2 align-items-center"> <i class="rtmicon rtmicon-location"></i> KLLG St, No.99, Pku City, ID 28289 </a> <a href="" class="read-more d-flex flex-row gap-2 align-items-center"> <i class="rtmicon rtmicon-classic-phone"></i> 0761-8523-398 </a> </div> <div class="d-flex flex-column gap-3"> <h5>Tags</h5> <hr class="m-0" style="max-width: 300px;"> <div class="d-flex flex-row gap-2"> <span class="tags">artists</span> <span class="tags active">audio</span> <span class="tags">instrument</span> <span class="tags">studio</span> </div> <div class="d-flex flex-row gap-2"> <span class="tags">music</span> <span class="tags">beat</span> <span class="tags">song</span> <span class="tags">performance</span> </div> <div class="d-flex flex-row gap-2"> <span class="tags">playlist</span> <span class="tags">album</span> <span class="tags">lyrics</span> <span class="tags">record</span> </div> </div> <div class="d-flex flex-column"> <img src="image/logo.png" alt="" class="img-fluid" width="790"> <div class="d-flex flex-xl-row flex-column"> <div class="border-end border-accent pe-4"> <a href="" class="read-more"> Home </a> </div> <div class="border-end border-accent px-4"> <a href="" class="read-more"> About Us </a> </div> <div class="border-end border-accent px-4"> <a href="" class="read-more"> Services </a> </div> <div class="border-end border-accent px-4"> <a href="" class="read-more"> Blog </a> </div> <div class="px-4"> <a href="" class="read-more"> Pages </a> </div> </div> </div> </div> </div> <div class="col mb-3"> <div class="d-flex flex-column gap-3 w-100 justify-content-between align-items-end"> <div class="social-container mb-5 gap-3"> <a href="https://www.facebook.com" class="social-item-2"> <i class="fa-brands fa-xs fa-facebook-f"></i> </a> <a href="https://www.twitter.com" class="social-item-2"> <i class="fa-brands fa-xs fa-twitter"></i> </a> <a href="https://www.spotify.com" class="social-item-2"> <i class="fa-brands fa-xs fa-spotify"></i> </a> <a href="https://www.instagram.com" class="social-item-2"> <i class="fa-brands fa-xs fa-instagram"></i> </a> <a href="https://music.apple.com" class="social-item-2"> <i class="fa-solid fa-xs fa-music"></i> </a> </div> <div class="d-flex flex-column w-100"> <div class="d-flex flex-column" style="align-self: end;"> <p>Get Contact</p> <h1 class="fw-normal">hello@domainsite.com</h1> </div> </div> </div> </div> </div> <div class="d-flex flex-xl-row flex-column gap-2 align-items-center justify-content-between pb-4"> <span class="text-color-2 fs-6 font-2"> Copyright © 2025 Rometheme. All Rights Reserved. </span> <div class="d-flex flex-xl-row flex-column gap-3"> <div class="border-end pe-3"> <a href="" class="read-more d-flex flex-row gap-3 align-items-center"> Terms Of Use </a> </div> <div> <a href="" class="read-more d-flex flex-row gap-3 align-items-center"> Privacy Notice </a> </div> </div> </div> </div> </div> </footer>
If you want to change the image with your own you can change the html code inside the img tag.
<img src="image/image-600x600-21.jpg" style="object-fit: cover;" class="img-fluid left-0 w-100 h-100" alt="">
If your file name is image-700x700.jpg you can change it as follows.
<img src="image/image-700x700.jpg" style="object-fit: cover;" class="img-fluid left-0 w-100 h-100" alt="">
As a first step if you want to change the font, you can import it in this section.
@import url('../css/vendor/urbanist/stylesheet.css');
@import url('../css/vendor/inter/stylesheet.css');
If you want to change the font, you can download the font at Google Font for example as follows:
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Cantata+One&display=swap');
If you would like to edit the color, font, or style of any elements in one of these columns, you would do the following:
:root {
--primary: #F4F4F4;
--text-color: #004551;
--text-color-2: #5A5A5A;
--background-color: #FEFEFE;
--accent-color: #FF9700;
--accent-color-2: #8E8E8E;
--accent-color-3: #D9EAED;
--accent-color-4: #C8E1E5;
--font-1: "Raleway", sans-serif;
--font-2: "Nunito", sans-serif;
--font-3: "Inter", sans-serif;
}
If you find that your new style is not overriding, it is most likely because of a specificity problem. Scroll down in your CSS file and make sure that there isn't a similar style that has more weight.
.text-gray {color: #somecolor;}
So, to ensure that your new styles are applied, make sure that they carry enough "weight" and that there isn't a style lower in the CSS file that is being applied after yours.
Open the style.css file form the root folder and search h1 until you find the color property
in the
file. It looks line this:
h1 {
font-size: 68px;
}
h2 {
font-size: 62px;
}
h3 {
font-size: 48px
}
Change the color with the one you want and hit save. If you want to change only the h1 color,
you have
to separate the h1 and give it another color. The css should look like this.
h1 {
font-size: 70px;
}
Now, lets say we wanted h1 to poin to http://google.com. At this point the h1 looks like
this:To add a link to your social icon paste the necessary URL into the <a href=> tag. See the example below:
<a href="https://www.facebook.com" class="social-item">< class="fa-brands fa-facebook-f"></i></a>
This template imports different js files for the different sliders, lightboxes and interactive tabs from the homeplage and the rest of the pages. All the js is built around JQuery. What follows are some examples where jQuery was used:
$(function () {
var swiperImage = new Swiper('.swiper.swiperImage', {
autoplay: {
delay: 5000
},
speed: 2000,
slidesPerView: 4,
slidesPerGroup: 1,
spaceBetween: 0,
loop: false,
grabCursor: true,
breakpoints: {
// when window width is >= 360px
360: {
slidesPerView: 1,
},
// when window width is >= 768px
768: {
slidesPerView: 4,
},
// when window width is >= 1024px
1024: {
slidesPerView: 4,
}
},
// If we need pagination
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
});
$(function () {
var swiperTestimonials = new Swiper('.swiperTestimonials', {
autoplay: {
delay: 3000
},
speed: 2000,
slidesPerView: 1,
slidesPerGroup: 1,
spaceBetween: 10,
loop: false,
grabCursor: true,
breakpoints: {
// when window width is >= 360px
360: {
slidesPerView: 1,
},
// when window width is >= 768px
768: {
slidesPerView: 1,
},
// when window width is >= 1024px
1024: {
slidesPerView: 1,
}
},
// If we need pagination
pagination: {
enabled: true,
el: '.swiper-pagination',
type: 'bullets',
clickable: true,
},
});
});
$(function () {
var swiperTestimonials2 = new Swiper('.swiperTestimonials2', {
autoplay: {
delay: 5000
},
speed: 2000,
slidesPerView: 2,
slidesPerGroup: 1,
spaceBetween: 10,
loop: false,
grabCursor: true,
breakpoints: {
// when window width is >= 360px
360: {
slidesPerView: 1,
},
// when window width is >= 768px
768: {
slidesPerView: 2,
},
// when window width is >= 1024px
1024: {
slidesPerView: 2,
}
},
scrollbar: {
el: '.custom-scrollbar',
draggable: true,
}
});
});
$(function () {
var swiperPartner = new Swiper('.swiper.swiperPartner', {
autoplay: {
delay: 3000
},
speed: 2000,
slidesPerView: 3,
slidesPerGroup: 1,
spaceBetween: 20,
initialSlide: 1,
loop: false,
grabCursor: true,
breakpoints: {
// when window width is >= 360px
360: {
slidesPerView: 1,
},
// when window width is >= 768px
768: {
slidesPerView: 3,
},
// when window width is >= 1024px
1024: {
slidesPerView: 3,
}
},
// If we need pagination
pagination: {
enabled: false,
el: '.swiper-pagination',
type: 'bullets',
clickable: true,
},
});
});
$(function () {
var swiperCard = new Swiper(".swiperCard", {
speed: 1000,
effect: "cards",
grabCursor: true,
initialSlide: 2,
loop: true,
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
});
const swiper = new Swiper('.custom-swiper', {
direction: 'vertical',
slidesPerView: 2,
spaceBetween: 20,
scrollbar: {
el: '.custom-scrollbar',
draggable: true,
},
});
const mySwiper = new Swiper('.mySwiper', {
direction: 'horizontal',
slidesPerView: 4, // Jumlah slide yang ditampilkan
spaceBetween: 20, // Jarak antar slide
breakpoints: {
// when window width is >= 360px
360: {
slidesPerView: 1,
},
// when window width is >= 768px
768: {
slidesPerView: 3,
},
// when window width is >= 1024px
1024: {
slidesPerView: 4,
}
},
scrollbar: {
el: '.custom-scrollbar',
draggable: true,
}
});
$(function () {
var swiperCard = new Swiper(".swiperService", {
speed: 1000,
effect: "fade",
grabCursor: true,
initialSlide: 2,
loop: true,
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
});
$(function () {
var swiperCard = new Swiper(".swiperService2", {
speed: 1000,
effect: "fade",
grabCursor: true,
initialSlide: 2,
loop: true,
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
});
To change the Configuration, please see SwiperJS documentation SwiperJS

Open contact.html file and change following area
<iframe loading="lazy" class="maps" src="https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&t=m&z=14&output=embed&iwloc=near" title="London Eye, London, United Kingdom" aria-label="London Eye, London, United Kingdom"> </iframe>
Open contact.html file and change following area with your Google Map API KEY Get Api
Key

Open the file in php/form-process.php line 9 , line 26 and line 44
$to = "recipient@example.com"
edited "recipient@example.com" with your email
In order to improve your search engine ranking, and thus enable your web site to appear among search results, please don't forget to change the description and keywords with your own.
<meta name="description" content=""> <meta name="keywords" content="">
I've used the following images, icons or other files as listed.
Once again, thank you so much for purchasing this theme. As I said at the beginning, I'd be glad to help you if you have any questions relating to this theme. No guarantees, but I'll do my best to assist. If you have a more general question relating to the themes on ThemeForest, you might consider visiting the forums and asking your question in the "Item Discussion" div.
Rometheme
Relase on 31 January 2025